scrapboxのtitleをnav barに固定するUserCSS
2024-04-18 15:41:07 /takkerで使っていたが、削除した 更新履歴
2021-05-05
13:56:40 private projectの鍵マークもnav barに固定されるようにした
https://gyazo.com/4092143fe8eb38a3688f579e206e60d6
2021-03-14
16:53:50 mobile端末でも固定されるようにした
類似のUserCSS
code:style.css
@media screen {
.quick-launch .left-box {
position: fixed;
top: -2px;
left: 40px; /* brand-iconの幅に応じて変えてください */
z-index: 1000;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.quick-launch .left-box {
left: 55px;
}
}
@media screen and (min-width: 992px) and (max-width: 1260px) {
.quick-launch .left-box {
left: 70px;
}
}
@media screen and (min-width: 1261px) {
.quick-launch .left-box {
left: calc((100% - 1280px)/2 + 80px);
}
}